/Users/thachakritkomolkhetruck/Desktop/IA_NetBeans_Project copy/src/Prototype/Type.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package Prototype;
 7 
 8 /**
 9  *
10  * @author ACER
11  */
12 public class Type {
13     private String typeName;
14     private double[]typeMultiplier = new double[18];
15     public Type(){}
16     public Type (String typeName, double[]typeMultiplier){
17         this.typeMultiplier = typeMultiplier;
18         this.typeName = typeName;
19     }
20 
21 
22 
23     public double[] getTypeMultiplier() {
24         return typeMultiplier;
25     }
26 
27     public String getTypeName() {
28         return typeName;
29     }
30 
31     public void setTypeMultiplier(double[] typeMultiplier) {
32         this.typeMultiplier = typeMultiplier;
33     }
34 
35     public void setTypeName(String typeName) {
36         this.typeName = typeName;
37     }
38 
39 
40 }
41